projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d61ebb
)
; Fix error message in last change to bindat.el
author
Basil L. Contovounesios
<basil@contovou.net>
Mon, 11 Mar 2024 10:16:20 +0000
(11:16 +0100)
committer
Basil L. Contovounesios
<basil@contovou.net>
Mon, 11 Mar 2024 10:16:20 +0000
(11:16 +0100)
Remove trailing period as per "(elisp) Error Symbols".
Relates to the following discussion:
https://lists.gnu.org/r/emacs-devel/2023-10/msg00473.html
https://lists.gnu.org/r/emacs-devel/2024-03/msg00340.html
lisp/emacs-lisp/bindat.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/bindat.el
b/lisp/emacs-lisp/bindat.el
index a2161022a89caf54f650ab4b25a154534105d044..ef0ec688dbd14616ea171827e777a79241493328 100644
(file)
--- a/
lisp/emacs-lisp/bindat.el
+++ b/
lisp/emacs-lisp/bindat.el
@@
-205,7
+205,7
@@
('strz (bindat--unpack-strz len))
('vec
(when (> len (length bindat-raw))
- (error "Vector length %d is greater than raw data length %d
.
"
+ (error "Vector length %d is greater than raw data length %d"
len (length bindat-raw)))
(let ((v (make-vector len 0)) (vlen 1))
(if (consp vectype)